home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap03 / howto07 / ccfmgr16.dpr next >
Encoding:
Text File  |  1995-10-19  |  492 b   |  20 lines

  1. program Ccfmgr16;
  2.  
  3. uses
  4.   Forms,
  5.   Ufmgr16 in 'UFMGR16.PAS' {CCFileMgrForm},
  6.   Dddfunit in 'DDDFUNIT.PAS' {DestDDForm},
  7.   Cfmpfun in 'CFMPFUN.PAS' {CCFMPropsForm},
  8.   Drwsutl3 in 'DRWSUTL3.PAS',
  9.   Drwsutl1 in 'DRWSUTL1.PAS';
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Title := 'CC File Center';
  15.   Application.CreateForm(TCCFileMgrForm, CCFileMgrForm);
  16.   Application.CreateForm(TDestDDForm, DestDDForm);
  17.   Application.CreateForm(TCCFMPropsForm, CCFMPropsForm);
  18.   Application.Run;
  19. end.
  20.